home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / MindScape.swf / scripts / DefineButton2_970 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2007-12-04  |  407 b   |  21 lines

  1. on(release){
  2.    if(_root.unlockedLevels == 0)
  3.    {
  4.       _root.currLvl = 0;
  5.    }
  6.    else if(_root.unlockedLevels == 1)
  7.    {
  8.       _root.currLvl = 101;
  9.    }
  10.    else if(_root.unlockedLevels == 2)
  11.    {
  12.       _root.currLvl = 102;
  13.    }
  14.    _root.score = 0;
  15.    _root.lifes = 5;
  16.    _root.health = 100;
  17.    _root.endSuccess = false;
  18.    _root.gotoAndPlay("cinematics");
  19.    removeMovieClip(this);
  20. }
  21.